home *** CD-ROM | disk | FTP | other *** search
/ Agent Central Host Computer / Agent - Central Host Computer.iso / _SETUP.1 / dayofweek.ctl < prev    next >
Text File  |  2000-05-12  |  645b  |  31 lines

  1. -- RCSVER $Id: dayofweek.ctl,v 1.1 2000-01-25 16:59:56-06 randy Exp $ */
  2. -- *************************************************************************
  3. --        Copyright (C) 1999, Agent Systems, Inc. All Rights Reserved.
  4. --
  5. -- Name:        dayofweek.ctl
  6. -- Date:     01/17/2000
  7. -- memo:        Randy Wood
  8. -- Description:    Load the data for the dayofweek table.
  9. -- Changes:
  10. -- *********************************************************************** */
  11. LOAD DATA
  12. INFILE *
  13. INTO TABLE dayofweek
  14. fields terminated by "|"
  15. trailing nullcols
  16. (
  17.     num,
  18.     descr
  19. )
  20. begindata
  21. 0|ALL|
  22. 1|SUN|
  23. 2|MON|
  24. 3|TUE|
  25. 4|WED|
  26. 5|THU|
  27. 6|FRI|
  28. 7|SAT|
  29. 8|WKE|
  30. 9|WKD|
  31.